This check looks for parameters in functions that are not used in the function
body and are not followed by other parameters which are used inside the function.
Loading history...
24
this.callMethod('copyCode');
25
}
26
},
27
28
/**
29
* The collapse button toggles the entire code block into and out of its
This check looks for parameters in functions that are not used in the function
body and are not followed by other parameters which are used inside the function.
Loading history...
35
this.callMethod('collapse');
36
}
37
},
38
39
/**
40
* The about button shows the user information about Mivhak
This check looks for parameters in functions that are not used in the function
body and are not followed by other parameters which are used inside the function.
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.